ac823845f3f26d8a353348ff6df2e1430fc9e9c1,OpenGPSTracker/application/src/nl/sogeti/android/gpstracker/viewer/LoggerMap.java,LoggerMap,getLastTrackPoint,#,1573
Before Change
if (lastLoc != null)
{
int microLatitude = (int) (lastLoc.getLatitude() * 1E6d);
int microLongitude = (int) (lastLoc.getLongitude() * 1E6d);
lastPoint = new GeoPoint(microLatitude, microLongitude);
}
After Change
if (lastLoc != null)
{
double latitude = lastLoc.getLatitude();
double longitude = lastLoc.getLongitude();
lastPoint = new LatLng(latitude, longitude);
}